/** START INTEGRATION WITH KLAVIYO **/ window.addEventListener('load', async (event) => { const email = document.querySelector('script[src*="doofinder-integration-klaviyo"]').dataset.email; if (typeof klaviyo !== 'undefined' && await klaviyo.isIdentified() === false && email !== "") { let userId = window.localStorage.getItem('df-random-userid'); userId = JSON.parse(userId); klaviyo.identify({"email": email, "external_id": userId}); } }); /** END INTEGRATION WITH KLAVIYO **/